2.0.29 • Published 7 months ago

@youfibre/otsc v2.0.29

Weekly downloads
-
License
GPL-3.0
Repository
gitlab
Last release
7 months ago

One-Touch Switching Client

Installation

npm install @youfibre/otsc

Basic Usage

// Add these imports...
import { OTSClient } from '@youfibre/otsc';

const client = new OTSClient(
  'https://hub-base-url',
  'https://sit-base-url',
  'my-client-id',
  'my-client-secret',
);

const clientWithCaching = new OTSClient(
  'https://hub-base-url',
  'https://sit-base-url',
  'my-client-id',
  'my-client-secret',
  {
    setItem: (key: string, value: string, ttlSeconds: number) => {
      // redisClient.set(key, value, 'EX', ttlSeconds);
    },
    getItem: (key: string) => {
      // return redisClient.get(key);
    }
  }
);

const message = {
  envelope: {
    source: {
      type: 'RCPID',
      identity: 'RCP001',
      correlationID: 'XYZ987'
    },
    destination: {
      type: 'RCPID',
      identity: 'RCP002',
      correlationID: 'XYZ123'
    },
    routingID: 'residentialSwitchMatchRequest'
  },

  residentialSwitchMatchRequest: {
    grcpBrandName: 'YouFibre Limited',
    name: 'Miggins', // Dummy data
    account: '0003316563216', // Dummy data
    address: {
      uprn: '12345', // Dummy data
      addressLines: ['Flat 1', 'Rose Cottage', '22 Cheshunt Mews', 'Cypress Street', 'Tyre Industrial Estate', 'Blnatyre'], // Dummy data
      postTown: 'Glasgow', // Dummy data
      postCode: 'SW1P 3UX' // Dummy data
    },
    services: [
      {
        serviceType: 'IAS',
        action: 'cease'
      },
      {
        serviceType: 'NBICS',
        serviceIdentifierType: 'DN',
        serviceIdentifier: '0101111222', // Dummy data
        action: 'port'
      }
    ]
  }
} as SwitchMessage;

const response = await client.postMessage(message);
console.log(response);
2.0.28

7 months ago

2.0.29

7 months ago

2.0.15

7 months ago

2.0.16

7 months ago

2.0.17

7 months ago

2.0.18

7 months ago

2.0.26

7 months ago

2.0.27

7 months ago

2.0.24

7 months ago

2.0.25

7 months ago

2.0.22

7 months ago

2.0.23

7 months ago

2.0.20

7 months ago

2.0.21

7 months ago

2.0.13

1 year ago

2.0.14

1 year ago

2.0.11

1 year ago

2.0.12

1 year ago

2.0.10

1 year ago

2.0.9

1 year ago

2.0.8

1 year ago

2.0.7

1 year ago

2.0.6

1 year ago

2.0.5

1 year ago

2.0.4

1 year ago

2.0.3

1 year ago

2.0.2

1 year ago

2.0.1

1 year ago

2.0.0

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago